home *** CD-ROM | disk | FTP | other *** search
/ CD Actual 22 / PC Actual CD 22.iso / SHARE / prog / POVRAY / E-P-O.ZIP / TEST-4.POV < prev    next >
Encoding:
Text File  |  1996-10-31  |  1.6 KB  |  57 lines

  1.  
  2. //------------------------------------------------------------------->
  3. //
  4. // test-4.pov
  5. //
  6. // "Easy POV Oven"
  7. //
  8. // Written By: Paul T. Dawson
  9. //             ptdawson@voicenet.com
  10. //             http://www.voicenet.com/~ptdawson
  11. //
  12. // All code and techniques are PUBLIC DOMAIN - have fun with it!
  13. //
  14. //------------------------------------------------------------------->
  15. //
  16. // This file is for testing the "Floor_Tile" object only.
  17. //
  18. //------------------------------------------------------------------->
  19. //
  20. // All of the usual initializing.
  21.  
  22.         #include "colors.inc"
  23.         #include "textures.inc"
  24.         #include "metals.inc"
  25.         #include "skies.inc"
  26.         #include "woods.inc"
  27.         #default { finish { Shiny } }
  28.         background { White }
  29.  
  30.         camera { location < 0.0*12, 0.7*12, -1*12 >
  31.                 look_at < 0, 0, 0 > }
  32.  
  33.         light_source { < -3*12, 10*12, -10*12 > color rgb < 2, 2, 2 > }
  34.  
  35. //------------------------------------------------------------------->
  36. //
  37. // Include the file and show the object.
  38.  
  39.         #include "floor.inc"
  40.  
  41.         // Center.
  42.         object { Floor_Tile translate < -0.5*12, 0, -0.5*12 > }
  43.  
  44.         // Optional sides.
  45.         //object { Floor_Tile translate < -1.5*12, 0, -0.5*12 > }
  46.         //object { Floor_Tile translate <  0.5*12, 0, -0.5*12 > }
  47.  
  48.         // Far away.
  49.         //object { Floor_Tile translate < -1.5*12, 0, 0.5*12 > }
  50.         //object { Floor_Tile translate < -0.5*12, 0, 0.5*12 > }
  51.         //object { Floor_Tile translate <  0.5*12, 0, 0.5*12 > }
  52.  
  53. //------------------------------------------------------------------->
  54. //
  55. // End of this file.
  56.  
  57.